home *** CD-ROM | disk | FTP | other *** search
/ PsL Monthly 1993 December / PSL Monthly Shareware CD-ROM (December 1993).iso / prgmming / dos / c / tcclib.exe / lha / CENTERF.C < prev    next >
C/C++ Source or Header  |  1989-07-18  |  272b  |  18 lines

  1. void AtSay( int x, int y, char *s );
  2.  
  3. #include <stdio.h>
  4.  
  5. #include <string.h>
  6.  
  7. void CenterF( int y, char *fmt, ... )
  8. {
  9.     char s[240];
  10.     va_list ap;
  11.  
  12.     va_start( ap, format );
  13.     vsprintf( s, fmt, ap );
  14.     va_end( ap );
  15.  
  16.     AtSay( ( 80 - strlen(s) ) / 2, y, s );
  17. }
  18.